aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/[id]/[...animeId]/video.module.css
blob: d947fc3efc806c83f842e64d8d05b49324c637c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.VideoMain {
	max-width: 98%;
	margin: 0px auto;
}

.Video {
	display: flex;
	justify-content: center;
	align-items: center;
}

.VideoPlayer {
	border-radius: 10px;
	width: 75%;
	height: auto;
}

.EpisodesButtons {
	display: flex;
	flex-direction: column;
	margin-left: 10px;
	height: 500px;
	overflow-y: auto;
	width: 100px;
	scrollbar-width: thin;
}

.EpisodesButtons button {
	width: 70px;
	margin: 5px;
	outline: none;
	border: none;
	padding: 5px;
	font-family: "Quicksand";
	font-size: 14px;
	border-radius: 5px;
	cursor: pointer;
	color: white;
	background-color: #3d3d3d;
	transition: background-color 0.2s linear;
}

.EpisodesButtons button:hover {
	background-color: #1f1f1f;
	transition: background-color 0.2s linear
}

@media screen and (max-width: 768px) {

	.VideoMain {
		max-width: 99%;
	}

	.Video {
		display: block;
	}

	.VideoPlayer {
		width: 100%;
	}

	.EpisodesButtons {
		display: flex;
		flex-direction: row;
		height: auto;
		width: auto;
		margin-top: 10px;
		margin-left: 0px;
		overflow-y: auto;
	}

	.EpisodesButtons button {
		width: 50px;
	}
}